home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / mui / bcc_src.lha / Parser / InsertFile.h < prev    next >
C/C++ Source or Header  |  1997-06-08  |  316b  |  31 lines

  1. #ifndef INSERTFILE_H
  2. #define INSERTFILE_H
  3.  
  4. #include <stdio.h>
  5.  
  6. class InsertFile {
  7.  
  8.     char *fname;
  9.     
  10.     unsigned long size;
  11.     void *data;
  12.  
  13.     void Load( void );
  14.     void Free( void );    
  15.     
  16. public:
  17.  
  18.     InsertFile( char *name ) {
  19.         fname = name;
  20.         data = 0;
  21.     }
  22.     ~InsertFile() {
  23.         Free();
  24.     }
  25.     
  26.     short Insert( FILE *fh );
  27.  
  28. };
  29.  
  30. #endif
  31.